Shortcut subroutine to reformat dictionary or JSON for readability โ 2 in URL means 2 spaces for indentation. Change to 4 for 4 spaces or '\t' for tab.
โข Input: Dictionary
โข Output: Formatted text of input
let jsonObject = [Shortcut Input as Dictionary]
let prettyJsonString = JSON.stringify(jsonObject, null, 4)
document.write(encodeURIComponent(prettyJsonString))